Info Endpoint
GET /api/v1/info
Description
This endpoint is used to get information about the API and its version.
- Method: GET
- Tags: Meta
- URL:
/info - ApiKey: No API key required
- Content-Type: No request body
Query Parameters
None
Request Body
None
Response
Success, returns API information as a string.
Error Codes
None
Example
GET /info
Sample Request
curl --location -g '{{baseUrl}}/info' \
--header 'Accept: text/plain' \
--header 'Authorization: <API Key>'
Sample Response
<string>
LANGUAGE
CURL REQUEST
curl --request GET \
--url /api/v1/info \
--header 'accept: application/json' \
--header 'content-type: application/json'
RESPONSE
Click Try It! to start a request and see the response here!